home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / Internet / NVU 0.50 for Windows / nvu-0.50-win32-installer-full.exe / {app} / chrome / zi001976 / skin / modern / venkman / venkman-output-light.css < prev    next >
Encoding:
Cascading Style Sheet File  |  2002-07-17  |  2.5 KB  |  99 lines

  1. /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  2.  *
  3.  * The contents of this file are subject to the Mozilla Public License
  4.  * Version 1.1 (the "License"); you may not use this file except in
  5.  * compliance with the License. You may obtain a copy of the License at
  6.  * http://www.mozilla.org/MPL/ 
  7.  * 
  8.  * Software distributed under the License is distributed on an "AS IS" basis,
  9.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  10.  * for the specific language governing rights and limitations under the
  11.  * License. 
  12.  *
  13.  * The Original Code is The JavaScript Debugger
  14.  * 
  15.  * The Initial Developer of the Original Code is
  16.  * Netscape Communications Corporation
  17.  * Portions created by Netscape are
  18.  * Copyright (C) 1998 Netscape Communications Corporation.
  19.  *
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU Public License (the "GPL"), in which case the
  22.  * provisions of the GPL are applicable instead of those above.
  23.  * If you wish to allow use of your version of this file only
  24.  * under the terms of the GPL and not to allow others to use your
  25.  * version of this file under the MPL, indicate your decision by
  26.  * deleting the provisions above and replace them with the notice
  27.  * and other provisions required by the GPL.  If you do not delete
  28.  * the provisions above, a recipient may use your version of this
  29.  * file under either the MPL or the GPL.
  30.  *
  31.  * Contributor(s):
  32.  *  Robert Ginda, <rginda@netscape.com>, original author
  33.  *
  34.  */
  35.  
  36. @import url(chrome://venkman/content/venkman-output-base.css);
  37.  
  38. body {
  39.     background: white;
  40.     color: black;
  41. }
  42.  
  43. a.venkman-link {
  44.     font-weight: bold;
  45.     color: #4b57aa;
  46. }
  47.  
  48. a.venkman-link:visited {
  49.     font-weight: bold;
  50.     color: #2d3566;
  51. }
  52.  
  53. .msg-data[msg-type="ERROR"] {
  54.     background: darkred;
  55.     font-weight: bold;
  56.     color: white;
  57. }
  58.  
  59. .msg-data:before {
  60.     font-weight: bold;
  61.     color: #632117;
  62. }
  63.  
  64. .msg-data[msg-type="ERROR"]:before {
  65.     color: orange;
  66. }
  67.  
  68. .msg-data[msg-type="ERROR"] a.venkman-link {
  69.     font-weight: bold;
  70.     color: white;
  71. }
  72.  
  73. .msg-data[msg-type="STOP"]:before {
  74.     color: darkred;
  75. }
  76.  
  77. .msg-data[msg-type="STOP"] {
  78.     font-weight: bold;
  79.     color: red;
  80. }
  81.  
  82. .msg-data[msg-type="CONT"]:before {
  83.     color: darkgreen;
  84. }
  85.  
  86. .msg-data[msg-type="CONT"] {
  87.     color: green;
  88.     font-weight: bold;
  89. }
  90.  
  91. .msg-data[msg-type="ETRACE"]:before {
  92.     color: brown;
  93. }
  94.    
  95. .msg-data[msg-type="FEVAL-IN"]:before,
  96. .msg-data[msg-type="FEVAL-OUT"]:before {
  97.     color: orange;
  98. }
  99.